set mtime to float(the movieTime of sprite ossprite)
set ratio to mtime / the duration of member ("OS" & guidenumber)
set sliderloc to integer(ratio * (the width of sprite gbarsprite - 1))
set sliderloc to sliderloc + the left of sprite gbarsprite
set the rect of sprite gslidersprite to rect(the left of sprite gslidersprite, the top of sprite gslidersprite, sliderloc, the bottom of sprite gslidersprite)
end
on dragslider
set barleft to the left of sprite gbarsprite
set barright to the right of sprite gbarsprite
set the movieRate of sprite ossprite to 0
updateStage()
repeat while the mouseDown = 1
set mh to the mouseH
if mh <= barleft then
set the rect of sprite gslidersprite to rect(86, 230, barleft, 237)
else
if mh >= barright then
set the rect of sprite gslidersprite to rect(86, 230, barright, 237)
else
set the rect of sprite gslidersprite to rect(86, 230, mh, 237)
end if
end if
updateStage()
setmovietimebyslider()
updateStage()
checkospoint()
end repeat
set the movieRate of sprite ossprite to 1
end
on setmovietimebyslider
set sliderloc to the right of sprite gslidersprite
set sliderloc to sliderloc - the left of sprite gbarsprite
set sliderloc to float(sliderloc)
set ratio to sliderloc / (the width of sprite gbarsprite - 1)
set mtime to ratio * the duration of member ("OS" & guidenumber)